dockge/backend/migrations/2023-12-20-2117-agent-table.ts
stroskler c0fc76a0c8
feat: dockge agent friendly name
Add the option to set a friendly name to a dockge remote
agent. If the field is not used the `agent.url` will be
displayed
2024-02-01 07:21:35 +00:00

17 lines
583 B
TypeScript

import { Knex } from "knex";
export async function up(knex: Knex): Promise<void> {
// Create the user table
return knex.schema.createTable("agent", (table) => {
table.increments("id");
table.string("url", 255).notNullable().unique();
table.string("username", 255).notNullable();
table.string("password", 255).notNullable();
table.string("friendlyname", 255);
table.boolean("active").notNullable().defaultTo(true);
});
}
export async function down(knex: Knex): Promise<void> {
return knex.schema.dropTable("agent");
}