11 lines
226 B
SQL
11 lines
226 B
SQL
-- Revert to the simple harvestables table
|
|
DROP TABLE IF EXISTS harvestable_drops;
|
|
DROP TABLE IF EXISTS harvestables;
|
|
|
|
CREATE TABLE harvestables (
|
|
id INTEGER PRIMARY KEY,
|
|
name TEXT NOT NULL,
|
|
data TEXT NOT NULL
|
|
);
|
|
|