1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/migrations/sql/011-create-client-applications.up.sql

10 lines
250 B
MySQL
Raw Normal View History

2016-12-06 09:19:15 +01:00
CREATE TABLE client_applications (
app_name varchar(255) PRIMARY KEY NOT NULL,
created_at timestamp default now(),
updated_at timestamp default now(),
description varchar(255),
icon varchar(255),
url varchar(255),
color varchar(255)
);