From 3abce75db491f27cfa2ff4f897359cfd88a73f9a Mon Sep 17 00:00:00 2001 From: Sam Dodrill Date: Mon, 5 Jan 2015 19:26:18 -0800 Subject: [PATCH] migrations: add is_agent field --- migrations.moon | 3 +++ 1 file changed, 3 insertions(+) diff --git a/migrations.moon b/migrations.moon index 45cbc06..65d1349 100644 --- a/migrations.moon +++ b/migrations.moon @@ -20,4 +20,7 @@ import add_column, create_table, types from require "lapis.db.schema" [4]: => add_column "users", "created_at", types.time add_column "users", "updated_at", types.time + + [5]: => + add_column "users", "is_agent", types.boolean }