add new files

This commit is contained in:
Sunandar
2017-01-24 17:45:40 +06:30
parent 2f427ae5b9
commit 2893f33a23
138 changed files with 36367 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
class CreateUser < ActiveRecord::Migration[5.0]
def change
create_table :users do |t|
t.string :name,:null => false
t.string :nrc
t.string :email
t.boolean :is_active,:default =>false
t.string :phone
t.string :address
t.string :secrect_key
t.timestamps null: false
end
end
end