14 lines
249 B
Ruby
Executable File
14 lines
249 B
Ruby
Executable File
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.timestamps
|
|
end
|
|
end
|
|
end
|