boissier_app/db/migrate/20110708093908_create_external_links.rb
2011-07-08 17:37:25 +02:00

12 lines
211 B
Ruby

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