vulco_app/migrations/00250_create_external_links.rb
2019-11-03 16:49:49 +01:00

12 lines
236 B
Ruby

class CreateExternalLinks < ActiveRecord::Migration[6.0]
def change
create_table :external_links do |t|
t.string :title
t.text :description
t.string :url
t.timestamps
end
end
end