jabrena / spring-boot-relational-database-poc

A POC to review different ways to implement the data access layer for a relational database.
https://jabrena.github.io/spring-boot-relational-database-poc/spy_data/index.html
Apache License 2.0
3 stars 3 forks source link

Unify criteria to load SQL for Sakila #77

Open jabrena opened 1 year ago

jabrena commented 1 year ago

Examples:

CREATE TABLE film (
    film_id integer DEFAULT nextval('film_film_id_seq'::regclass) NOT NULL,
CREATE TABLE film (
    film_id bigint DEFAULT nextval('film_film_id_seq'::regclass) NOT NULL,
CREATE TABLE actor (
    actor_id integer DEFAULT nextval('actor_actor_id_seq'::regclass) NOT NULL,
CREATE TABLE actor (
    actor_id bigint DEFAULT nextval('actor_actor_id_seq'::regclass) NOT NULL,