Commit 5f7fa2784e1bc58b06efe755644a74a84496c3c7

Authored by 648540858
1 parent 2e60339e

修改sql文件

Showing 1 changed file with 2 additions and 0 deletions
sql/mysql.sql
@@ -111,6 +111,7 @@ create table device_mobile_position @@ -111,6 +111,7 @@ create table device_mobile_position
111 111
112 create table gb_stream 112 create table gb_stream
113 ( 113 (
  114 + id int auto_increment,
114 app varchar(255) not null, 115 app varchar(255) not null,
115 stream varchar(255) not null, 116 stream varchar(255) not null,
116 gbId varchar(50) not null, 117 gbId varchar(50) not null,
@@ -120,6 +121,7 @@ create table gb_stream @@ -120,6 +121,7 @@ create table gb_stream
120 streamType varchar(50) null, 121 streamType varchar(50) null,
121 mediaServerId varchar(50) null, 122 mediaServerId varchar(50) null,
122 status int null, 123 status int null,
  124 + createStamp int null,
123 primary key (app, stream, gbId) 125 primary key (app, stream, gbId)
124 ); 126 );
125 127