Demo app using the Scala Play framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

14 lines
214 B

  1. # Tasks schema
  2. # --- !Ups
  3. CREATE SEQUENCE task_id_seq;
  4. CREATE TABLE task (
  5. id integer NOT NULL DEFAULT nextval('task_id_seq'),
  6. label varchar(255)
  7. );
  8. # --- !Downs
  9. DROP TABLE task;
  10. DROP SEQUENCE task_id_seq;