Browse Source

ADD column to cloud table

tags/v3.0.0
Jasder 5 years ago
parent
commit
56965910a5
3 changed files with 11 additions and 8 deletions
  1. +9
    -8
      app/models/ci/cloud_account.rb
  2. +1
    -0
      app/models/license.rb
  3. +1
    -0
      app/models/member.rb

+ 9
- 8
app/models/ci/cloud_account.rb View File

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


+ 1
- 0
app/models/license.rb View File

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

class License < ApplicationRecord


+ 1
- 0
app/models/member.rb View File

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


Loading…
Cancel
Save