CREATE TABLE `media_servers` ( `id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, `name` text NOT NULL, `type` text NOT NULL, `url` text NOT NULL, `token` text NOT NULL, `library_section` text, `enabled` integer DEFAULT true NOT NULL, `created_at` text DEFAULT (datetime('now')) NOT NULL, `updated_at` text DEFAULT (datetime('now')) NOT NULL );