14 lines
278 B
Ruby
14 lines
278 B
Ruby
|
class CreateAccounts < ActiveRecord::Migration[5.0]
|
||
|
def change
|
||
|
create_table :accounts do |t|
|
||
|
t.string :username
|
||
|
t.string :password
|
||
|
t.string :home
|
||
|
t.string :site
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
add_index :accounts, :username, unique: true
|
||
|
end
|
||
|
end
|