barcode update

This commit is contained in:
nandar
2018-07-26 09:33:20 +06:30
parent 004f801f71
commit 55554707f0
19 changed files with 36130 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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