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
  • #215

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

数据库加表

mysql变更格式

数据库:ucs

表名: tb_tour_icp_license

sql:

-- auto-generated definition
create table tb_tour_icp_license
(
  id               int auto_increment
    primary key,
  company_name     varchar(500) default ''             not null
  comment '企业名称',
  site_url         varchar(1000) default ''            not null
  comment '域名',
  status           tinyint(1) unsigned default '1'     not null
  comment '状态:1代表无证,2代表超出范围经营',
  create_time      timestamp default CURRENT_TIMESTAMP not null,
  last_update_time timestamp default CURRENT_TIMESTAMP not null
  on update CURRENT_TIMESTAMP
)
  comment '旅游-网站信息-没有许可证的表';

create index tb_tour_icp_license_site_url_index
  on tb_tour_icp_license (site_url);
Assignee
Assign to
None
Milestone
None
Assign milestone
Time tracking