huellas/migrations/20220717192031_create_places_table.sql
Felipe Contreras 643c42d970 Initial Commit
2022-07-18 01:26:35 -04:00

11 lines
316 B
SQL

CREATE TABLE places (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name VARCHAR NOT NULL,
address VARCHAR NOT NULL,
open_hours VARCHAR NOT NULL,
icon VARCHAR NOT NULL,
description VARCHAR NOT NULL,
longitude REAL NOT NULL,
latitude REAL NOT NULL,
active BOOLEAN NOT NULL DEFAULT TRUE
);