16 lines
309 B
Ruby
Executable File
16 lines
309 B
Ruby
Executable File
# frozen_string_literal: true
|
|
class CreateUsers < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :users do |t|
|
|
t.string :email
|
|
t.string :password
|
|
t.boolean :admin
|
|
t.string :first_name
|
|
t.string :last_name
|
|
t.integer :user_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|