SamTV12345-PodFetch/migrations/sqlite/2023-05-03-183844_search/up.sql

31 lines
1004 B
SQL

-- Your SQL goes here
PRAGMA foreign_keys = off;
PRAGMA defer_foreign_keys=on;
PRAGMA ignore_check_constraints=on;
create table podcasts2
(
id integer not null primary key,
name text not null,
directory_id text not null,
rssfeed text not null,
image_url text not null,
summary TEXT,
language TEXT,
explicit TEXT,
keywords TEXT,
last_build_date TEXT,
author TEXT,
active BOOLEAN default TRUE not null,
original_image_url VARCHAR(255) default '' not null,
directory_name VARCHAR(255) default '' not null
);
INSERT INTO podcasts2 SELECT * FROM podcasts;
DROP TABLE podcasts;
ALTER TABLE podcasts2 RENAME TO podcasts;
PRAGMA foreign_keys=on;
PRAGMA defer_foreign_keys=off;
PRAGMA ignore_check_constraints=off;