add new file

This commit is contained in:
Sunandar
2017-02-03 17:56:43 +06:30
parent 538c898e06
commit cccf9c0e9b
21 changed files with 369 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
class CreateClients < ActiveRecord::Migration[5.0]
def change
create_table :clients do |t|
t.string :name,:null => false
t.string :nrc
t.string :email
t.string :phone
t.string :address
t.string :product_type
t.string :secrect_key
t.timestamps null: false
t.timestamps
end
end
end