12 lines
252 B
SQL
12 lines
252 B
SQL
-- +goose Up
|
|
CREATE TABLE datasets (
|
|
id UUID PRIMARY KEY default gen_random_uuid(),
|
|
name varchar(255),
|
|
description text,
|
|
created_at timestamp default now(),
|
|
updated_at timestamp default now()
|
|
);
|
|
|
|
-- +goose Down
|
|
DROP TABLE datasets;
|