WIA/db/migrate/20120503030309_create_links.rb

11 lines
198 B
Ruby

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