22 lines
284 B
Ruby
22 lines
284 B
Ruby
class CreateExternalLinks < ActiveRecord::Migration
|
|
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
|