dex/db/migrations/0003_user_created_at.sql
2015-08-20 12:38:15 -07:00

5 lines
111 B
SQL

-- +migrate Up
ALTER TABLE authd_user ADD COLUMN "created_at" bigint;
UPDATE authd_user SET "created_at" = 0;