1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-28 00:06:53 +01:00

s/user/created_by/g in 001-initial-schema.up.sql

This commit is contained in:
Gard Rimestad 2014-10-23 10:50:01 +02:00
parent 67112a7cbb
commit 7868ba3f67

View File

@ -16,7 +16,7 @@ CREATE TABLE events (
id serial primary key,
created_at timestamp default now(),
type varchar(255) NOT NULL,
user varchar(255) NOT NULL,
created_by varchar(255) NOT NULL,
data json
);