11 lines
215 B
Ruby
11 lines
215 B
Ruby
|
class CreateSoftwares < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
create_table :softwares do |t|
|
||
|
t.string :name, uniqueness: true, null: false
|
||
|
t.string :website
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|