9902345291
muahahahah
16 lines
304 B
Ruby
Executable File
16 lines
304 B
Ruby
Executable File
# frozen_string_literal: true
|
|
class CreateUsers < ActiveRecord::Migration
|
|
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
|