Files
nemo_encoder/db/migrate/20180720032352_create_sellers.rb
2018-07-26 09:33:20 +06:30

14 lines
244 B
Ruby

class CreateSellers < ActiveRecord::Migration[5.0]
def change
create_table :sellers do |t|
t.string :name
t.string :email
t.string :phone
t.string :address
t.string :key
t.timestamps
end
end
end