-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
14dd5a4
commit 9fc2772
Showing
2 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
-- Public domain, no copyright. Use at your own risk | ||
|
||
DROP TABLE IF EXISTS `test_table`; | ||
DROP TABLE IF EXISTS test_table; | ||
|
||
CREATE TABLE `test_table` ( | ||
`id_col` INT(11) PRIMARY KEY AUTO_INCREMENT, | ||
`integer_col` INT(11), | ||
`string_col` VARCHAR(256), | ||
`date_col` TIMESTAMP | ||
CREATE TABLE test_table ( | ||
id_col INT(11) PRIMARY KEY AUTO_INCREMENT, | ||
integer_col INT(11), | ||
string_col VARCHAR(256), | ||
date_col TIMESTAMP | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
-- Public domain, no copyright. Use at your own risk | ||
|
||
DROP TABLE IF EXISTS `test_table`; | ||
DROP TABLE IF EXISTS test_table; | ||
|
||
CREATE TABLE `test_table` ( | ||
`id_col` INTEGER PRIMARY KEY AUTOINCREMENT, | ||
`integer_col` INTEGER, | ||
`string_col` TEXT, | ||
`date_col` TIMESTAMP | ||
CREATE TABLE test_table ( | ||
id_col INTEGER PRIMARY KEY AUTOINCREMENT, | ||
integer_col INTEGER, | ||
string_col TEXT, | ||
date_col TIMESTAMP | ||
); |