
0.93.source-code.create-db.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of a8i Show documentation
Show all versions of a8i Show documentation
EOS is a Full Fledged Java Application Server with built in Dependency Injection,
Request Mapping and Data Management support. EOS boasts its own custom view tag library and
the ability to write your own custom view tags.
The newest version!
-- your create schema sql --
create table todos (
id bigint PRIMARY KEY AUTO_INCREMENT,
title character varying(254) NOT NULL
);