tethys.backend/database/migrations/dataset_3_abstracts.ts

44 lines
1.9 KiB
TypeScript
Raw Normal View History

2024-03-14 19:25:27 +00:00
import { DescriptionTypes } from '#contracts/enums';
import { BaseSchema } from "@adonisjs/lucid/schema";
export default class DatasetTitles extends BaseSchema {
protected tableName = 'dataset_abstracts';
public async up() {
this.schema.createTable(this.tableName, (table) => {
table.increments('id').primary().defaultTo("nextval('dataset_abstracts_id_seq')");
table.integer('document_id').unsigned().notNullable();
table
.foreign('document_id', 'dataset_abstracts_document_id_foreign')
.references('id')
.inTable('documents')
.onDelete('CASCADE') // delete this abstract when document is deleted
.onUpdate('CASCADE');
// table.string('type', 255).notNullable();
table.enum('type', Object.values(DescriptionTypes)).notNullable();
table.string('value', 255).notNullable();
table.string('language', 3).notNullable();
});
}
public async down() {
this.schema.dropTable(this.tableName);
}
}
// -- Table: dataset_titles
// CREATE TABLE IF NOT EXISTS dataset_titles
// (
// id integer NOT NULL DEFAULT nextval('dataset_titles_id_seq'::regclass),
// document_id integer NOT NULL,
// type character varying(255) NOT NULL,
// value character varying(255) NOT NULL,
// language character varying(3) NOT NULL,
// CONSTRAINT dataset_titles_pkey PRIMARY KEY (id),
// CONSTRAINT dataset_titles_document_id_foreign FOREIGN KEY (document_id)
// REFERENCES documents (id) MATCH SIMPLE
// ON UPDATE CASCADE
// ON DELETE CASCADE,
// CONSTRAINT dataset_titles_type_check CHECK (type::text = ANY (ARRAY['Main'::character varying::text, 'Sub'::character varying::text, 'Alternative'::character varying::text, 'Translated'::character varying::text, 'Other'::character varying::text]))
// )