Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 219 Bytes

table.md

File metadata and controls

18 lines (15 loc) · 219 Bytes

Tables

CREATE TABLE authors (
  id   SERIAL PRIMARY KEY,
  name text   NOT NULL
);
package db

// Struct names use the singular form of table names
type Author struct {
	ID   int
	Name string
}