TheMathemagicians/sevenkeys/database/migrations/00004_add_storagearea_table...

14 lines
303 B
MySQL
Raw Normal View History

2024-11-25 17:13:50 +00:00
-- +goose Up
-- +goose StatementBegin
CREATE TABLE IF NOT EXISTS StorageArea (
Id INT AUTO_INCREMENT PRIMARY KEY,
Name VARCHAR(100) NOT NULL,
StorageType ENUM('Binder', 'Box')
);
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
DROP TABLE IF EXISTS StorageArea;
-- +goose StatementEnd