Guest User

Untitled

a guest
Jul 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $sql = 'CREATE TABLE ' . DB::table('abbrev') . ' '
  2. . '('
  3. . 'xid INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,'
  4. . 'abbrev VARCHAR(255),'
  5. . 'caseful INT(9) DEFAULT 0,'
  6. . "prefix VARCHAR(16) DEFAULT '\\b',"
  7. . "postfix VARCHAR(16) DEFAULT '\\b',"
  8. . 'definition VARCHAR(255)'
  9. . ')';
Add Comment
Please, Sign In to add comment