db scripts cleanup
This commit is contained in:
11
db-scripts/sample-schema-mysql.sql
Normal file
11
db-scripts/sample-schema-mysql.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
CREATE DATABASE IF NOT EXISTS test;
|
||||
USE test;
|
||||
DROP TABLE IF EXISTS test;
|
||||
create table test(
|
||||
id bigint,
|
||||
name varchar (2000),
|
||||
tag char(1)
|
||||
);
|
||||
insert into test values (1, 'Bob', NULL);
|
||||
insert into test values (2, 'Jane', NULL);
|
||||
insert into test values (3, 'John', NULL);
|
||||
Reference in New Issue
Block a user