10 lines
187 B
Ruby
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
|