mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
10 lines
250 B
SQL
10 lines
250 B
SQL
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)
|
|
);
|