Merge branch 'master' of ssh://bitbucket.org/code2lab/sxrestaurant
This commit is contained in:
20
db/migrate/20170602093159_create_print_settings.rb
Normal file
20
db/migrate/20170602093159_create_print_settings.rb
Normal file
@@ -0,0 +1,20 @@
|
||||
class CreatePrintSettings < ActiveRecord::Migration[5.1]
|
||||
def change
|
||||
create_table :print_settings do |t|
|
||||
t.string :name, :null => false
|
||||
t.string :unique_code, :null => false
|
||||
t.string :template, :null => false
|
||||
t.string :db_name, :null => false
|
||||
t.string :db_type, :null => false
|
||||
t.string :db_username, :null => false
|
||||
t.string :db_password
|
||||
t.string :printer_name, :null => false
|
||||
t.string :api_settings
|
||||
t.decimal :page_width, :null => false, :default => 200
|
||||
t.decimal :page_height, :null => false, :default => 800
|
||||
t.integer :print_copies, :null => false, :default => 1
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
10
db/migrate/20170602101727_create_accounts.rb
Normal file
10
db/migrate/20170602101727_create_accounts.rb
Normal file
@@ -0,0 +1,10 @@
|
||||
class CreateAccounts < ActiveRecord::Migration[5.1]
|
||||
def change
|
||||
create_table :accounts do |t|
|
||||
t.string :title
|
||||
t.string :account_type
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user