10 lines
175 B
SQL
10 lines
175 B
SQL
CREATE TABLE IF NOT EXISTS PetPictures (
|
|
uuid TEXT PRIMARY KEY,
|
|
title text,
|
|
contributor text,
|
|
description text,
|
|
created_at integer,
|
|
posted integer,
|
|
filepath text
|
|
);
|