projects
/
hibernate-maven-plugin
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
4da1a3c1e280ca3016d8a3445a7750002459ec93
[hibernate-maven-plugin]
/
schema-basic.sql
1
2
drop table EVENTS if exists;
3
4
create table EVENTS (
5
EVENT_ID bigint not null,
6
EVENT_DATE timestamp,
7
title varchar(255),
8
primary key (EVENT_ID)
9
);