-- Active: 1723171055346@@127.0.0.1@5432@postgres@public -- +goose Up -- +goose StatementBegin CREATE TABLE IF NOT EXISTS users( id UUID NOT NULL PRIMARY KEY, name VARCHAR(50) NOT NULL, email VARCHAR(50) NOT NULL, password VARCHAR(500) NOT NULL, phone VARCHAR(50) ); -- +goose StatementEnd -- +goose Down -- +goose StatementBegin DROP TABLE IF EXISTS users; -- +goose StatementEnd