WIA/db/migrate/20120503030309_create_links.rb

12 lines
198 B
Ruby
Raw Normal View History

class CreateLinks < ActiveRecord::Migration
def change
create_table :links do |t|
t.string :url
t.text :description
t.datetime :release
t.timestamps
end
end
end