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