qi6_app/db/migrate/0090_create_external_links.rb
2019-05-17 12:30:45 +02:00

22 lines
289 B
Ruby

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