PreviouslyOnIFM/code/models/stations.lua
2020-09-20 17:11:30 +02:00

12 lines
218 B
Lua

local Model = require("lapis.db.model").Model
-- stations
-- - name/id
local Stations = Model:extend("stations", {
-- "station", types.integer
-- "name", types.varchar
timestamp = true
})
return Stations