15 lines
377 B
Ruby
15 lines
377 B
Ruby
class CreateClients < ActiveRecord::Migration[5.0]
|
|
def change
|
|
create_table :clients do |t|
|
|
t.string :name,:null => false
|
|
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
|