mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +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)
|
|
);
|