projects
/
hibernate-maven-plugin
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
66738bb5cff0aa791a5a8a38f850c53b144c4e8d
[hibernate-maven-plugin]
/
schema-osgi-unmanaged-jpa.sql
1
2
drop table DataPoint if exists;
3
4
create table DataPoint (
5
id bigint generated by default as identity,
6
name varchar(255),
7
primary key (id)
8
);