1
0
Fork 0
dokkan-data-rails/db/migrate/20151001151519_create_links.rb

11 lines
187 B
Ruby
Raw Normal View History

2015-10-01 11:56:40 -04:00
class CreateLinks < ActiveRecord::Migration
def change
create_table :links do |t|
t.string :name
t.string :description
t.timestamps null: false
end
end
end