migration external link

This commit is contained in:
Nicolas Bally 2011-07-08 17:37:25 +02:00
parent 6e37bda04d
commit ec09f45d78

View File

@ -0,0 +1,11 @@
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