11 lines
217 B
Ruby
11 lines
217 B
Ruby
class CreateUsers < ActiveRecord::Migration
|
|
def change
|
|
create_table :users do |t|
|
|
t.string :username
|
|
t.string :email
|
|
t.string :password_digest
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|