summaryrefslogtreecommitdiff
path: root/spring-framework/07-user-jdbc-ds-transaction/misc/mysql-schema.sql
diff options
context:
space:
mode:
authorKamal Wickramanayake <kamal@inbox.lk>2026-04-25 21:53:33 +0530
committerKamal Wickramanayake <kamal@inbox.lk>2026-04-25 21:53:33 +0530
commit4afcff940551079617e8f4116e52bb0ef9df7fcc (patch)
treecbaed6a2a53c7d032bfafaa38b94e4fc607f3e76 /spring-framework/07-user-jdbc-ds-transaction/misc/mysql-schema.sql
parent7b08f1155e1cb8bf263c3570eeb119970407a037 (diff)
Added Spring Framework sample code
Diffstat (limited to 'spring-framework/07-user-jdbc-ds-transaction/misc/mysql-schema.sql')
-rw-r--r--spring-framework/07-user-jdbc-ds-transaction/misc/mysql-schema.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/spring-framework/07-user-jdbc-ds-transaction/misc/mysql-schema.sql b/spring-framework/07-user-jdbc-ds-transaction/misc/mysql-schema.sql
new file mode 100644
index 0000000..5f7e263
--- /dev/null
+++ b/spring-framework/07-user-jdbc-ds-transaction/misc/mysql-schema.sql
@@ -0,0 +1,7 @@
+CREATE TABLE user_account (
+ uid int(11) primary key NOT NULL AUTO_INCREMENT,
+ username varchar(20) not null unique,
+ full_name text,
+ password char(32),
+ active boolean
+) Engine=InnoDB;