1
0
Fork 0
dokkan-data-rails/db/migrate/20151001151519_create_links.rb
2015-10-06 11:50:31 -04:00

10 lines
187 B
Ruby

class CreateLinks < ActiveRecord::Migration
def change
create_table :links do |t|
t.string :name
t.string :description
t.timestamps null: false
end
end
end