12 lines
198 B
Ruby
12 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
|