dex/db/migrations/0003_user_created_at.sql

5 lines
111 B
MySQL
Raw Normal View History

2015-08-19 15:40:36 -07:00
-- +migrate Up
ALTER TABLE authd_user ADD COLUMN "created_at" bigint;
UPDATE authd_user SET "created_at" = 0;