diff options
author | Jason <jasonmm.github@gmail.com> | 2017-09-12 08:51:08 -0500 |
---|---|---|
committer | Jason <jasonmm.github@gmail.com> | 2017-09-12 08:51:08 -0500 |
commit | f06e78a888f914788f0634feb93fcef071518e9d (patch) | |
tree | 72280f007b2552e605c1a3abd492325fb364f020 | |
parent | 79be2a1431af533baab0d2be0cbce882ba6a1fd8 (diff) | |
download | semanticscuttle-f06e78a888f914788f0634feb93fcef071518e9d.tar.gz semanticscuttle-f06e78a888f914788f0634feb93fcef071518e9d.tar.bz2 |
Added missing semicolon.
-rw-r--r-- | data/schema/2.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/schema/2.sql b/data/schema/2.sql index 6c3bfaf..171e011 100644 --- a/data/schema/2.sql +++ b/data/schema/2.sql @@ -1,4 +1,4 @@ -ALTER TABLE `sc_bookmarks` CHANGE `bDescription` `bDescription` VARCHAR( 1500 ) +ALTER TABLE `sc_bookmarks` CHANGE `bDescription` `bDescription` VARCHAR( 1500 ); CREATE TABLE `sc_tagscache` ( `tcId` int(11) NOT NULL auto_increment, `tag1` varchar(100) NOT NULL default '', |