Migrated git root from W:/programming/Projects/ to W:/programming/Projects/Tubearr/. Previous history preserved in Tubearr-full-backup.bundle at parent directory. Completed milestones: M001 through M005 Active: M006/S02 (Add Channel UX)
11 lines
487 B
SQL
11 lines
487 B
SQL
CREATE TABLE `platform_settings` (
|
|
`platform` text PRIMARY KEY NOT NULL,
|
|
`default_format_profile_id` integer REFERENCES `format_profiles`(`id`) ON DELETE SET NULL,
|
|
`check_interval` integer DEFAULT 360,
|
|
`concurrency_limit` integer DEFAULT 2,
|
|
`subtitle_languages` text,
|
|
`grab_all_enabled` integer DEFAULT false NOT NULL,
|
|
`grab_all_order` text DEFAULT 'newest' NOT NULL,
|
|
`created_at` text DEFAULT (datetime('now')) NOT NULL,
|
|
`updated_at` text DEFAULT (datetime('now')) NOT NULL
|
|
);
|