summaryrefslogtreecommitdiff
path: root/spring-jdbc/src/test/resources/org/springframework/jdbc/datasource/embedded/db-schema-custom-comments.sql
blob: cff0cc727e8cd297f13ad2e80f39eb14b2aba233 (plain)
1
2
3
4
5
~ Failed DROP can be ignored if necessary 
drop table T_TEST if exists;

~ Create the test table
create table T_TEST (NAME varchar(50) not null);