about summary refs log tree commit diff stats
path: root/generator/schema.sql
blob: 879ebb38e4f1f1f1dec4b5992878c7807fc40d59 (plain) (blame)
1
2
3
4
5
CREATE TABLE `songs` (
  `title` VARCHAR(255) NOT NULL,
  `artist` VARCHAR(255) NOT NULL,
  `category` VARCHAR(255) NOT NULL
);