Skip to content

Commit

Permalink
Remove backquotes
Browse files Browse the repository at this point in the history
  • Loading branch information
babelouest committed Apr 29, 2022
1 parent 14dd5a4 commit 9fc2772
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions test/test.mariadb.sql
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
);
12 changes: 6 additions & 6 deletions test/test.sqlite3.sql
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
);

0 comments on commit 9fc2772

Please sign in to comment.