build endpoints
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-08-05 20:12:35 +02:00
parent f8ff7c394c
commit 0c981b4590
30 changed files with 612 additions and 257 deletions
+5 -1
View File
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[8.1].define(version: 2026_08_05_000001) do
ActiveRecord::Schema[8.1].define(version: 2026_08_05_000003) do
create_table "admin_users", charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
t.datetime "created_at", null: false
t.datetime "deleted_at", precision: 3
@@ -38,6 +38,7 @@ ActiveRecord::Schema[8.1].define(version: 2026_08_05_000001) do
t.json "scopes"
t.string "token_digest", limit: 64, null: false
t.string "token_prefix", limit: 12, null: false
t.boolean "unrestricted", default: false, null: false
t.datetime "updated_at", precision: 3
t.index ["deleted_at"], name: "idx_application_tokens_deleted_at"
t.index ["owner_type", "owner_id"], name: "idx_application_tokens_owner"
@@ -249,6 +250,8 @@ ActiveRecord::Schema[8.1].define(version: 2026_08_05_000001) do
t.boolean "highlighted", default: false
t.string "license", limit: 128
t.string "name", limit: 128
t.bigint "owner_id", unsigned: true
t.string "owner_type", limit: 128
t.string "platform", limit: 128
t.string "site"
t.string "status", limit: 20, default: "development"
@@ -257,6 +260,7 @@ ActiveRecord::Schema[8.1].define(version: 2026_08_05_000001) do
t.datetime "updated_at", precision: 3
t.index ["deleted_at"], name: "idx_softwares_deleted_at"
t.index ["name"], name: "idx_softwares_name", unique: true
t.index ["owner_type", "owner_id"], name: "idx_softwares_owner"
end
add_foreign_key "admin_users", "members"