ADD column to cloud table

This commit is contained in:
Jasder 2020-12-30 13:47:00 +08:00
parent 50021a278b
commit 56965910a5
3 changed files with 11 additions and 8 deletions

View File

@ -2,14 +2,15 @@
# #
# Table name: ci_cloud_accounts # Table name: ci_cloud_accounts
# #
# id :integer not null, primary key # id :integer not null, primary key
# user_id :integer not null # user_id :integer not null
# ip_num :integer # ip_num :integer
# account :string(255) # account :string(255)
# secret :string(255) # secret :string(255)
# created_at :datetime not null # created_at :datetime not null
# updated_at :datetime not null # updated_at :datetime not null
# ci_user_id :integer # ci_user_id :integer
# server_type :integer default("0")
# #
# Indexes # Indexes
# #

View File

@ -7,6 +7,7 @@
# content :text(65535) # content :text(65535)
# created_at :datetime not null # created_at :datetime not null
# updated_at :datetime not null # updated_at :datetime not null
# is_secret :boolean default("0")
# #
class License < ApplicationRecord class License < ApplicationRecord

View File

@ -11,6 +11,7 @@
# course_group_id :integer default("0") # course_group_id :integer default("0")
# is_collect :integer default("1") # is_collect :integer default("1")
# graduation_group_id :integer default("0") # graduation_group_id :integer default("0")
# is_apply_signature :boolean default("0")
# #
# Indexes # Indexes
# #