Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
S
shuidi-product-change
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • Operations
    • Operations
    • Incidents
  • Analytics
    • Analytics
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Members
    • Members
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • 互联网应用开发
  • shuidi-product-change
  • Issues
  • #220

Closed
Open
Created Sep 28, 2018 by 黄宽宽@huangkuankuanDeveloper

数据库加表

mysql变更格式

数据库:ucs

表名:tb_360_wiki_logo

sql:

-- auto-generated definition
create table tb_360_wiki_logo
(
  id                  int auto_increment
    primary key,
  user_id             int                                 not null
  comment '用户id',
  company_name_digest varchar(32) default ''              not null
  comment '企业digest',
  logo_path           varchar(5000)                       null
  comment '用户提交的logo',
  status              tinyint(1) unsigned default '1'     not null
  comment '状态:1待审,2通过,3不通过,4被更新',
  re_msg              varchar(2500) default ''            not null
  comment '审核回复的信息',
  create_time         timestamp default CURRENT_TIMESTAMP not null,
  last_update_time    timestamp default CURRENT_TIMESTAMP not null
  on update CURRENT_TIMESTAMP
)
  comment '360百科-logo信息表';

create index tb_360_wiki_logo_company_name_digest_index
  on tb_360_wiki_logo (company_name_digest);
Assignee
Assign to
None
Milestone
None
Assign milestone
Time tracking