dex/db/migrations/0003_user_created_at.sql

5 lines
111 B
MySQL
Raw Normal View History

2015-08-20 04:10:36 +05:30
-- +migrate Up
ALTER TABLE authd_user ADD COLUMN "created_at" bigint;
UPDATE authd_user SET "created_at" = 0;