27 lines
962 B
SQL
27 lines
962 B
SQL
-- Add up migration script here
|
|
CREATE TABLE
|
|
`gift_exchange` (
|
|
`id` integer not null primary key autoincrement,
|
|
`created_at` INTEGER not null default CURRENT_TIMESTAMP,
|
|
`created_by` ineger null,
|
|
`updated_at` INTEGER null default CURRENT_TIMESTAMP,
|
|
`updated_by` integer null,
|
|
`name` varchar(255) null,
|
|
`exchange_date` INTEGER null,
|
|
unique (`id`)
|
|
);
|
|
|
|
CREATE TABLE
|
|
`gift_exchange_participants` (
|
|
`id` integer not null primary key autoincrement,
|
|
`created_at` INTEGER not null default CURRENT_TIMESTAMP,
|
|
`created_by` ineger null,
|
|
`updated_at` INTEGER null default CURRENT_TIMESTAMP,
|
|
`updated_by` integer null,
|
|
`exchange_id` INTEGER not null,
|
|
`participant_id` INTEGER not null,
|
|
`gifter_id` INTEGER null,
|
|
unique (`id`)
|
|
);
|
|
|
|
insert into `role_permissions` (`created_at`, `created_by`, `id`, `item`, `role_id`, `updated_at`, `updated_by`) values ('0', '0', '10', '/giftexchange', '2', '0', '0') |