calathea/migrations/2025-01-13-114912_create_pl.../up.sql

7 lines
143 B
SQL

create table plants (
id integer primary key not null,
name text not null,
species text not null,
description text not null
);