Exosphere is a set of small, modular, self-hostable community tools built on the AT Protocol. app.exosphere.site
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: reset drizzle db

Hugo 92461689 703edde2

+19 -965
drizzle/0000_left_hammerhead.sql drizzle/0000_brave_goliath.sql
-28
drizzle/0001_blue_trauma.sql
··· 1 - PRAGMA foreign_keys=OFF;--> statement-breakpoint 2 - CREATE TABLE `__new_feature_requests` ( 3 - `id` text PRIMARY KEY NOT NULL, 4 - `sphere_id` text NOT NULL, 5 - `number` integer NOT NULL, 6 - `author_did` text NOT NULL, 7 - `title` text NOT NULL, 8 - `description` text NOT NULL, 9 - `category` text DEFAULT 'general' NOT NULL, 10 - `status` text DEFAULT 'requested' NOT NULL, 11 - `duplicate_of_id` text, 12 - `pds_uri` text, 13 - `hidden_at` text, 14 - `moderated_by` text, 15 - `created_at` text DEFAULT (datetime('now')) NOT NULL, 16 - `updated_at` text DEFAULT (datetime('now')) NOT NULL, 17 - FOREIGN KEY (`sphere_id`) REFERENCES `spheres`(`id`) ON UPDATE no action ON DELETE no action 18 - ); 19 - --> statement-breakpoint 20 - INSERT INTO `__new_feature_requests`("id", "sphere_id", "number", "author_did", "title", "description", "category", "status", "duplicate_of_id", "pds_uri", "hidden_at", "moderated_by", "created_at", "updated_at") SELECT "id", "sphere_id", "number", "author_did", "title", "description", "category", "status", "duplicate_of_id", "pds_uri", "hidden_at", "moderated_by", "created_at", "updated_at" FROM `feature_requests`;--> statement-breakpoint 21 - DROP TABLE `feature_requests`;--> statement-breakpoint 22 - ALTER TABLE `__new_feature_requests` RENAME TO `feature_requests`;--> statement-breakpoint 23 - PRAGMA foreign_keys=ON;--> statement-breakpoint 24 - CREATE UNIQUE INDEX `idx_feature_requests_sphere_number` ON `feature_requests` (`sphere_id`,`number`);--> statement-breakpoint 25 - CREATE INDEX `idx_feature_requests_sphere` ON `feature_requests` (`sphere_id`);--> statement-breakpoint 26 - CREATE INDEX `idx_feature_requests_status` ON `feature_requests` (`status`);--> statement-breakpoint 27 - CREATE INDEX `idx_feature_requests_created` ON `feature_requests` (`created_at`);--> statement-breakpoint 28 - CREATE INDEX `idx_feature_requests_category` ON `feature_requests` (`category`);
+16 -2
drizzle/meta/0000_snapshot.json
··· 1 1 { 2 2 "version": "6", 3 3 "dialect": "sqlite", 4 - "id": "4c5f0d67-4da8-40d5-bcc8-33c2b60ac8a6", 4 + "id": "7333f8c4-b6fc-4b06-baf1-b769e893cb37", 5 5 "prevId": "00000000-0000-0000-0000-000000000000", 6 6 "tables": { 7 7 "oauth_sessions": { ··· 816 816 "isUnique": false 817 817 } 818 818 }, 819 - "foreignKeys": {}, 819 + "foreignKeys": { 820 + "feature_requests_sphere_id_spheres_id_fk": { 821 + "name": "feature_requests_sphere_id_spheres_id_fk", 822 + "tableFrom": "feature_requests", 823 + "tableTo": "spheres", 824 + "columnsFrom": [ 825 + "sphere_id" 826 + ], 827 + "columnsTo": [ 828 + "id" 829 + ], 830 + "onDelete": "no action", 831 + "onUpdate": "no action" 832 + } 833 + }, 820 834 "compositePrimaryKeys": {}, 821 835 "uniqueConstraints": {}, 822 836 "checkConstraints": {}
-925
drizzle/meta/0001_snapshot.json
··· 1 - { 2 - "version": "6", 3 - "dialect": "sqlite", 4 - "id": "cea369de-a802-4177-8538-5b15823a3bfc", 5 - "prevId": "4c5f0d67-4da8-40d5-bcc8-33c2b60ac8a6", 6 - "tables": { 7 - "oauth_sessions": { 8 - "name": "oauth_sessions", 9 - "columns": { 10 - "key": { 11 - "name": "key", 12 - "type": "text", 13 - "primaryKey": true, 14 - "notNull": true, 15 - "autoincrement": false 16 - }, 17 - "session": { 18 - "name": "session", 19 - "type": "text", 20 - "primaryKey": false, 21 - "notNull": true, 22 - "autoincrement": false 23 - }, 24 - "created_at": { 25 - "name": "created_at", 26 - "type": "text", 27 - "primaryKey": false, 28 - "notNull": true, 29 - "autoincrement": false, 30 - "default": "(datetime('now'))" 31 - }, 32 - "updated_at": { 33 - "name": "updated_at", 34 - "type": "text", 35 - "primaryKey": false, 36 - "notNull": true, 37 - "autoincrement": false, 38 - "default": "(datetime('now'))" 39 - } 40 - }, 41 - "indexes": {}, 42 - "foreignKeys": {}, 43 - "compositePrimaryKeys": {}, 44 - "uniqueConstraints": {}, 45 - "checkConstraints": {} 46 - }, 47 - "oauth_states": { 48 - "name": "oauth_states", 49 - "columns": { 50 - "key": { 51 - "name": "key", 52 - "type": "text", 53 - "primaryKey": true, 54 - "notNull": true, 55 - "autoincrement": false 56 - }, 57 - "state": { 58 - "name": "state", 59 - "type": "text", 60 - "primaryKey": false, 61 - "notNull": true, 62 - "autoincrement": false 63 - }, 64 - "created_at": { 65 - "name": "created_at", 66 - "type": "text", 67 - "primaryKey": false, 68 - "notNull": true, 69 - "autoincrement": false, 70 - "default": "(datetime('now'))" 71 - } 72 - }, 73 - "indexes": {}, 74 - "foreignKeys": {}, 75 - "compositePrimaryKeys": {}, 76 - "uniqueConstraints": {}, 77 - "checkConstraints": {} 78 - }, 79 - "indexer_cursor": { 80 - "name": "indexer_cursor", 81 - "columns": { 82 - "id": { 83 - "name": "id", 84 - "type": "text", 85 - "primaryKey": true, 86 - "notNull": true, 87 - "autoincrement": false, 88 - "default": "'jetstream'" 89 - }, 90 - "cursor": { 91 - "name": "cursor", 92 - "type": "integer", 93 - "primaryKey": false, 94 - "notNull": true, 95 - "autoincrement": false 96 - }, 97 - "updated_at": { 98 - "name": "updated_at", 99 - "type": "text", 100 - "primaryKey": false, 101 - "notNull": true, 102 - "autoincrement": false, 103 - "default": "(datetime('now'))" 104 - } 105 - }, 106 - "indexes": {}, 107 - "foreignKeys": {}, 108 - "compositePrimaryKeys": {}, 109 - "uniqueConstraints": {}, 110 - "checkConstraints": {} 111 - }, 112 - "sphere_members": { 113 - "name": "sphere_members", 114 - "columns": { 115 - "sphere_id": { 116 - "name": "sphere_id", 117 - "type": "text", 118 - "primaryKey": false, 119 - "notNull": true, 120 - "autoincrement": false 121 - }, 122 - "did": { 123 - "name": "did", 124 - "type": "text", 125 - "primaryKey": false, 126 - "notNull": true, 127 - "autoincrement": false 128 - }, 129 - "role": { 130 - "name": "role", 131 - "type": "text", 132 - "primaryKey": false, 133 - "notNull": true, 134 - "autoincrement": false, 135 - "default": "'member'" 136 - }, 137 - "status": { 138 - "name": "status", 139 - "type": "text", 140 - "primaryKey": false, 141 - "notNull": true, 142 - "autoincrement": false, 143 - "default": "'invited'" 144 - }, 145 - "invited_by": { 146 - "name": "invited_by", 147 - "type": "text", 148 - "primaryKey": false, 149 - "notNull": false, 150 - "autoincrement": false 151 - }, 152 - "pds_uri": { 153 - "name": "pds_uri", 154 - "type": "text", 155 - "primaryKey": false, 156 - "notNull": false, 157 - "autoincrement": false 158 - }, 159 - "approval_pds_uri": { 160 - "name": "approval_pds_uri", 161 - "type": "text", 162 - "primaryKey": false, 163 - "notNull": false, 164 - "autoincrement": false 165 - }, 166 - "created_at": { 167 - "name": "created_at", 168 - "type": "text", 169 - "primaryKey": false, 170 - "notNull": true, 171 - "autoincrement": false, 172 - "default": "(datetime('now'))" 173 - } 174 - }, 175 - "indexes": { 176 - "idx_sphere_members_did": { 177 - "name": "idx_sphere_members_did", 178 - "columns": [ 179 - "did" 180 - ], 181 - "isUnique": false 182 - } 183 - }, 184 - "foreignKeys": { 185 - "sphere_members_sphere_id_spheres_id_fk": { 186 - "name": "sphere_members_sphere_id_spheres_id_fk", 187 - "tableFrom": "sphere_members", 188 - "tableTo": "spheres", 189 - "columnsFrom": [ 190 - "sphere_id" 191 - ], 192 - "columnsTo": [ 193 - "id" 194 - ], 195 - "onDelete": "no action", 196 - "onUpdate": "no action" 197 - } 198 - }, 199 - "compositePrimaryKeys": { 200 - "sphere_members_sphere_id_did_pk": { 201 - "columns": [ 202 - "sphere_id", 203 - "did" 204 - ], 205 - "name": "sphere_members_sphere_id_did_pk" 206 - } 207 - }, 208 - "uniqueConstraints": {}, 209 - "checkConstraints": {} 210 - }, 211 - "sphere_modules": { 212 - "name": "sphere_modules", 213 - "columns": { 214 - "sphere_id": { 215 - "name": "sphere_id", 216 - "type": "text", 217 - "primaryKey": false, 218 - "notNull": true, 219 - "autoincrement": false 220 - }, 221 - "module_name": { 222 - "name": "module_name", 223 - "type": "text", 224 - "primaryKey": false, 225 - "notNull": true, 226 - "autoincrement": false 227 - }, 228 - "enabled_at": { 229 - "name": "enabled_at", 230 - "type": "text", 231 - "primaryKey": false, 232 - "notNull": true, 233 - "autoincrement": false, 234 - "default": "(datetime('now'))" 235 - } 236 - }, 237 - "indexes": {}, 238 - "foreignKeys": { 239 - "sphere_modules_sphere_id_spheres_id_fk": { 240 - "name": "sphere_modules_sphere_id_spheres_id_fk", 241 - "tableFrom": "sphere_modules", 242 - "tableTo": "spheres", 243 - "columnsFrom": [ 244 - "sphere_id" 245 - ], 246 - "columnsTo": [ 247 - "id" 248 - ], 249 - "onDelete": "no action", 250 - "onUpdate": "no action" 251 - } 252 - }, 253 - "compositePrimaryKeys": { 254 - "sphere_modules_sphere_id_module_name_pk": { 255 - "columns": [ 256 - "sphere_id", 257 - "module_name" 258 - ], 259 - "name": "sphere_modules_sphere_id_module_name_pk" 260 - } 261 - }, 262 - "uniqueConstraints": {}, 263 - "checkConstraints": {} 264 - }, 265 - "spheres": { 266 - "name": "spheres", 267 - "columns": { 268 - "id": { 269 - "name": "id", 270 - "type": "text", 271 - "primaryKey": true, 272 - "notNull": true, 273 - "autoincrement": false 274 - }, 275 - "handle": { 276 - "name": "handle", 277 - "type": "text", 278 - "primaryKey": false, 279 - "notNull": true, 280 - "autoincrement": false 281 - }, 282 - "name": { 283 - "name": "name", 284 - "type": "text", 285 - "primaryKey": false, 286 - "notNull": true, 287 - "autoincrement": false 288 - }, 289 - "description": { 290 - "name": "description", 291 - "type": "text", 292 - "primaryKey": false, 293 - "notNull": false, 294 - "autoincrement": false 295 - }, 296 - "visibility": { 297 - "name": "visibility", 298 - "type": "text", 299 - "primaryKey": false, 300 - "notNull": true, 301 - "autoincrement": false, 302 - "default": "'public'" 303 - }, 304 - "write_access": { 305 - "name": "write_access", 306 - "type": "text", 307 - "primaryKey": false, 308 - "notNull": true, 309 - "autoincrement": false, 310 - "default": "'open'" 311 - }, 312 - "owner_did": { 313 - "name": "owner_did", 314 - "type": "text", 315 - "primaryKey": false, 316 - "notNull": true, 317 - "autoincrement": false 318 - }, 319 - "pds_uri": { 320 - "name": "pds_uri", 321 - "type": "text", 322 - "primaryKey": false, 323 - "notNull": false, 324 - "autoincrement": false 325 - }, 326 - "created_at": { 327 - "name": "created_at", 328 - "type": "text", 329 - "primaryKey": false, 330 - "notNull": true, 331 - "autoincrement": false, 332 - "default": "(datetime('now'))" 333 - }, 334 - "updated_at": { 335 - "name": "updated_at", 336 - "type": "text", 337 - "primaryKey": false, 338 - "notNull": true, 339 - "autoincrement": false, 340 - "default": "(datetime('now'))" 341 - } 342 - }, 343 - "indexes": { 344 - "spheres_handle_unique": { 345 - "name": "spheres_handle_unique", 346 - "columns": [ 347 - "handle" 348 - ], 349 - "isUnique": true 350 - } 351 - }, 352 - "foreignKeys": {}, 353 - "compositePrimaryKeys": {}, 354 - "uniqueConstraints": {}, 355 - "checkConstraints": {} 356 - }, 357 - "feature_request_comment_votes": { 358 - "name": "feature_request_comment_votes", 359 - "columns": { 360 - "comment_id": { 361 - "name": "comment_id", 362 - "type": "text", 363 - "primaryKey": false, 364 - "notNull": true, 365 - "autoincrement": false 366 - }, 367 - "author_did": { 368 - "name": "author_did", 369 - "type": "text", 370 - "primaryKey": false, 371 - "notNull": true, 372 - "autoincrement": false 373 - }, 374 - "pds_uri": { 375 - "name": "pds_uri", 376 - "type": "text", 377 - "primaryKey": false, 378 - "notNull": false, 379 - "autoincrement": false 380 - }, 381 - "created_at": { 382 - "name": "created_at", 383 - "type": "text", 384 - "primaryKey": false, 385 - "notNull": true, 386 - "autoincrement": false, 387 - "default": "(datetime('now'))" 388 - } 389 - }, 390 - "indexes": { 391 - "idx_feature_request_comment_votes_comment": { 392 - "name": "idx_feature_request_comment_votes_comment", 393 - "columns": [ 394 - "comment_id" 395 - ], 396 - "isUnique": false 397 - } 398 - }, 399 - "foreignKeys": { 400 - "feature_request_comment_votes_comment_id_feature_request_comments_id_fk": { 401 - "name": "feature_request_comment_votes_comment_id_feature_request_comments_id_fk", 402 - "tableFrom": "feature_request_comment_votes", 403 - "tableTo": "feature_request_comments", 404 - "columnsFrom": [ 405 - "comment_id" 406 - ], 407 - "columnsTo": [ 408 - "id" 409 - ], 410 - "onDelete": "no action", 411 - "onUpdate": "no action" 412 - } 413 - }, 414 - "compositePrimaryKeys": { 415 - "feature_request_comment_votes_comment_id_author_did_pk": { 416 - "columns": [ 417 - "comment_id", 418 - "author_did" 419 - ], 420 - "name": "feature_request_comment_votes_comment_id_author_did_pk" 421 - } 422 - }, 423 - "uniqueConstraints": {}, 424 - "checkConstraints": {} 425 - }, 426 - "feature_request_comments": { 427 - "name": "feature_request_comments", 428 - "columns": { 429 - "id": { 430 - "name": "id", 431 - "type": "text", 432 - "primaryKey": true, 433 - "notNull": true, 434 - "autoincrement": false 435 - }, 436 - "request_id": { 437 - "name": "request_id", 438 - "type": "text", 439 - "primaryKey": false, 440 - "notNull": true, 441 - "autoincrement": false 442 - }, 443 - "author_did": { 444 - "name": "author_did", 445 - "type": "text", 446 - "primaryKey": false, 447 - "notNull": true, 448 - "autoincrement": false 449 - }, 450 - "content": { 451 - "name": "content", 452 - "type": "text", 453 - "primaryKey": false, 454 - "notNull": true, 455 - "autoincrement": false 456 - }, 457 - "pds_uri": { 458 - "name": "pds_uri", 459 - "type": "text", 460 - "primaryKey": false, 461 - "notNull": false, 462 - "autoincrement": false 463 - }, 464 - "created_at": { 465 - "name": "created_at", 466 - "type": "text", 467 - "primaryKey": false, 468 - "notNull": true, 469 - "autoincrement": false, 470 - "default": "(datetime('now'))" 471 - }, 472 - "updated_at": { 473 - "name": "updated_at", 474 - "type": "text", 475 - "primaryKey": false, 476 - "notNull": true, 477 - "autoincrement": false, 478 - "default": "(datetime('now'))" 479 - }, 480 - "hidden_at": { 481 - "name": "hidden_at", 482 - "type": "text", 483 - "primaryKey": false, 484 - "notNull": false, 485 - "autoincrement": false 486 - }, 487 - "moderated_by": { 488 - "name": "moderated_by", 489 - "type": "text", 490 - "primaryKey": false, 491 - "notNull": false, 492 - "autoincrement": false 493 - } 494 - }, 495 - "indexes": { 496 - "idx_feature_request_comments_request": { 497 - "name": "idx_feature_request_comments_request", 498 - "columns": [ 499 - "request_id" 500 - ], 501 - "isUnique": false 502 - }, 503 - "idx_feature_request_comments_author_request": { 504 - "name": "idx_feature_request_comments_author_request", 505 - "columns": [ 506 - "author_did", 507 - "request_id" 508 - ], 509 - "isUnique": false 510 - } 511 - }, 512 - "foreignKeys": { 513 - "feature_request_comments_request_id_feature_requests_id_fk": { 514 - "name": "feature_request_comments_request_id_feature_requests_id_fk", 515 - "tableFrom": "feature_request_comments", 516 - "tableTo": "feature_requests", 517 - "columnsFrom": [ 518 - "request_id" 519 - ], 520 - "columnsTo": [ 521 - "id" 522 - ], 523 - "onDelete": "no action", 524 - "onUpdate": "no action" 525 - } 526 - }, 527 - "compositePrimaryKeys": {}, 528 - "uniqueConstraints": {}, 529 - "checkConstraints": {} 530 - }, 531 - "feature_request_statuses": { 532 - "name": "feature_request_statuses", 533 - "columns": { 534 - "id": { 535 - "name": "id", 536 - "type": "text", 537 - "primaryKey": true, 538 - "notNull": true, 539 - "autoincrement": false 540 - }, 541 - "request_id": { 542 - "name": "request_id", 543 - "type": "text", 544 - "primaryKey": false, 545 - "notNull": true, 546 - "autoincrement": false 547 - }, 548 - "author_did": { 549 - "name": "author_did", 550 - "type": "text", 551 - "primaryKey": false, 552 - "notNull": true, 553 - "autoincrement": false 554 - }, 555 - "status": { 556 - "name": "status", 557 - "type": "text", 558 - "primaryKey": false, 559 - "notNull": true, 560 - "autoincrement": false 561 - }, 562 - "pds_uri": { 563 - "name": "pds_uri", 564 - "type": "text", 565 - "primaryKey": false, 566 - "notNull": false, 567 - "autoincrement": false 568 - }, 569 - "created_at": { 570 - "name": "created_at", 571 - "type": "text", 572 - "primaryKey": false, 573 - "notNull": true, 574 - "autoincrement": false, 575 - "default": "(datetime('now'))" 576 - } 577 - }, 578 - "indexes": { 579 - "idx_feature_request_statuses_request": { 580 - "name": "idx_feature_request_statuses_request", 581 - "columns": [ 582 - "request_id" 583 - ], 584 - "isUnique": false 585 - } 586 - }, 587 - "foreignKeys": { 588 - "feature_request_statuses_request_id_feature_requests_id_fk": { 589 - "name": "feature_request_statuses_request_id_feature_requests_id_fk", 590 - "tableFrom": "feature_request_statuses", 591 - "tableTo": "feature_requests", 592 - "columnsFrom": [ 593 - "request_id" 594 - ], 595 - "columnsTo": [ 596 - "id" 597 - ], 598 - "onDelete": "no action", 599 - "onUpdate": "no action" 600 - } 601 - }, 602 - "compositePrimaryKeys": {}, 603 - "uniqueConstraints": {}, 604 - "checkConstraints": {} 605 - }, 606 - "feature_request_votes": { 607 - "name": "feature_request_votes", 608 - "columns": { 609 - "request_id": { 610 - "name": "request_id", 611 - "type": "text", 612 - "primaryKey": false, 613 - "notNull": true, 614 - "autoincrement": false 615 - }, 616 - "author_did": { 617 - "name": "author_did", 618 - "type": "text", 619 - "primaryKey": false, 620 - "notNull": true, 621 - "autoincrement": false 622 - }, 623 - "pds_uri": { 624 - "name": "pds_uri", 625 - "type": "text", 626 - "primaryKey": false, 627 - "notNull": false, 628 - "autoincrement": false 629 - }, 630 - "created_at": { 631 - "name": "created_at", 632 - "type": "text", 633 - "primaryKey": false, 634 - "notNull": true, 635 - "autoincrement": false, 636 - "default": "(datetime('now'))" 637 - } 638 - }, 639 - "indexes": { 640 - "idx_feature_request_votes_request": { 641 - "name": "idx_feature_request_votes_request", 642 - "columns": [ 643 - "request_id" 644 - ], 645 - "isUnique": false 646 - } 647 - }, 648 - "foreignKeys": { 649 - "feature_request_votes_request_id_feature_requests_id_fk": { 650 - "name": "feature_request_votes_request_id_feature_requests_id_fk", 651 - "tableFrom": "feature_request_votes", 652 - "tableTo": "feature_requests", 653 - "columnsFrom": [ 654 - "request_id" 655 - ], 656 - "columnsTo": [ 657 - "id" 658 - ], 659 - "onDelete": "no action", 660 - "onUpdate": "no action" 661 - } 662 - }, 663 - "compositePrimaryKeys": { 664 - "feature_request_votes_request_id_author_did_pk": { 665 - "columns": [ 666 - "request_id", 667 - "author_did" 668 - ], 669 - "name": "feature_request_votes_request_id_author_did_pk" 670 - } 671 - }, 672 - "uniqueConstraints": {}, 673 - "checkConstraints": {} 674 - }, 675 - "feature_requests": { 676 - "name": "feature_requests", 677 - "columns": { 678 - "id": { 679 - "name": "id", 680 - "type": "text", 681 - "primaryKey": true, 682 - "notNull": true, 683 - "autoincrement": false 684 - }, 685 - "sphere_id": { 686 - "name": "sphere_id", 687 - "type": "text", 688 - "primaryKey": false, 689 - "notNull": true, 690 - "autoincrement": false 691 - }, 692 - "number": { 693 - "name": "number", 694 - "type": "integer", 695 - "primaryKey": false, 696 - "notNull": true, 697 - "autoincrement": false 698 - }, 699 - "author_did": { 700 - "name": "author_did", 701 - "type": "text", 702 - "primaryKey": false, 703 - "notNull": true, 704 - "autoincrement": false 705 - }, 706 - "title": { 707 - "name": "title", 708 - "type": "text", 709 - "primaryKey": false, 710 - "notNull": true, 711 - "autoincrement": false 712 - }, 713 - "description": { 714 - "name": "description", 715 - "type": "text", 716 - "primaryKey": false, 717 - "notNull": true, 718 - "autoincrement": false 719 - }, 720 - "category": { 721 - "name": "category", 722 - "type": "text", 723 - "primaryKey": false, 724 - "notNull": true, 725 - "autoincrement": false, 726 - "default": "'general'" 727 - }, 728 - "status": { 729 - "name": "status", 730 - "type": "text", 731 - "primaryKey": false, 732 - "notNull": true, 733 - "autoincrement": false, 734 - "default": "'requested'" 735 - }, 736 - "duplicate_of_id": { 737 - "name": "duplicate_of_id", 738 - "type": "text", 739 - "primaryKey": false, 740 - "notNull": false, 741 - "autoincrement": false 742 - }, 743 - "pds_uri": { 744 - "name": "pds_uri", 745 - "type": "text", 746 - "primaryKey": false, 747 - "notNull": false, 748 - "autoincrement": false 749 - }, 750 - "hidden_at": { 751 - "name": "hidden_at", 752 - "type": "text", 753 - "primaryKey": false, 754 - "notNull": false, 755 - "autoincrement": false 756 - }, 757 - "moderated_by": { 758 - "name": "moderated_by", 759 - "type": "text", 760 - "primaryKey": false, 761 - "notNull": false, 762 - "autoincrement": false 763 - }, 764 - "created_at": { 765 - "name": "created_at", 766 - "type": "text", 767 - "primaryKey": false, 768 - "notNull": true, 769 - "autoincrement": false, 770 - "default": "(datetime('now'))" 771 - }, 772 - "updated_at": { 773 - "name": "updated_at", 774 - "type": "text", 775 - "primaryKey": false, 776 - "notNull": true, 777 - "autoincrement": false, 778 - "default": "(datetime('now'))" 779 - } 780 - }, 781 - "indexes": { 782 - "idx_feature_requests_sphere_number": { 783 - "name": "idx_feature_requests_sphere_number", 784 - "columns": [ 785 - "sphere_id", 786 - "number" 787 - ], 788 - "isUnique": true 789 - }, 790 - "idx_feature_requests_sphere": { 791 - "name": "idx_feature_requests_sphere", 792 - "columns": [ 793 - "sphere_id" 794 - ], 795 - "isUnique": false 796 - }, 797 - "idx_feature_requests_status": { 798 - "name": "idx_feature_requests_status", 799 - "columns": [ 800 - "status" 801 - ], 802 - "isUnique": false 803 - }, 804 - "idx_feature_requests_created": { 805 - "name": "idx_feature_requests_created", 806 - "columns": [ 807 - "created_at" 808 - ], 809 - "isUnique": false 810 - }, 811 - "idx_feature_requests_category": { 812 - "name": "idx_feature_requests_category", 813 - "columns": [ 814 - "category" 815 - ], 816 - "isUnique": false 817 - } 818 - }, 819 - "foreignKeys": { 820 - "feature_requests_sphere_id_spheres_id_fk": { 821 - "name": "feature_requests_sphere_id_spheres_id_fk", 822 - "tableFrom": "feature_requests", 823 - "tableTo": "spheres", 824 - "columnsFrom": [ 825 - "sphere_id" 826 - ], 827 - "columnsTo": [ 828 - "id" 829 - ], 830 - "onDelete": "no action", 831 - "onUpdate": "no action" 832 - } 833 - }, 834 - "compositePrimaryKeys": {}, 835 - "uniqueConstraints": {}, 836 - "checkConstraints": {} 837 - }, 838 - "feed_posts": { 839 - "name": "feed_posts", 840 - "columns": { 841 - "id": { 842 - "name": "id", 843 - "type": "text", 844 - "primaryKey": true, 845 - "notNull": true, 846 - "autoincrement": false 847 - }, 848 - "author_did": { 849 - "name": "author_did", 850 - "type": "text", 851 - "primaryKey": false, 852 - "notNull": true, 853 - "autoincrement": false 854 - }, 855 - "content": { 856 - "name": "content", 857 - "type": "text", 858 - "primaryKey": false, 859 - "notNull": true, 860 - "autoincrement": false 861 - }, 862 - "parent_id": { 863 - "name": "parent_id", 864 - "type": "text", 865 - "primaryKey": false, 866 - "notNull": false, 867 - "autoincrement": false 868 - }, 869 - "pds_uri": { 870 - "name": "pds_uri", 871 - "type": "text", 872 - "primaryKey": false, 873 - "notNull": false, 874 - "autoincrement": false 875 - }, 876 - "created_at": { 877 - "name": "created_at", 878 - "type": "text", 879 - "primaryKey": false, 880 - "notNull": true, 881 - "autoincrement": false, 882 - "default": "(datetime('now'))" 883 - }, 884 - "updated_at": { 885 - "name": "updated_at", 886 - "type": "text", 887 - "primaryKey": false, 888 - "notNull": true, 889 - "autoincrement": false, 890 - "default": "(datetime('now'))" 891 - } 892 - }, 893 - "indexes": { 894 - "idx_feed_posts_parent": { 895 - "name": "idx_feed_posts_parent", 896 - "columns": [ 897 - "parent_id" 898 - ], 899 - "isUnique": false 900 - }, 901 - "idx_feed_posts_created": { 902 - "name": "idx_feed_posts_created", 903 - "columns": [ 904 - "created_at" 905 - ], 906 - "isUnique": false 907 - } 908 - }, 909 - "foreignKeys": {}, 910 - "compositePrimaryKeys": {}, 911 - "uniqueConstraints": {}, 912 - "checkConstraints": {} 913 - } 914 - }, 915 - "views": {}, 916 - "enums": {}, 917 - "_meta": { 918 - "schemas": {}, 919 - "tables": {}, 920 - "columns": {} 921 - }, 922 - "internal": { 923 - "indexes": {} 924 - } 925 - }
+2 -9
drizzle/meta/_journal.json
··· 5 5 { 6 6 "idx": 0, 7 7 "version": "6", 8 - "when": 1774343285849, 9 - "tag": "0000_left_hammerhead", 10 - "breakpoints": true 11 - }, 12 - { 13 - "idx": 1, 14 - "version": "6", 15 - "when": 1774359886018, 16 - "tag": "0001_blue_trauma", 8 + "when": 1774360860027, 9 + "tag": "0000_brave_goliath", 17 10 "breakpoints": true 18 11 } 19 12 ]
+1 -1
packages/indexer/src/modules.ts
··· 1 1 import type { ExosphereModule } from "@exosphere/core/types"; 2 2 import { coreIndexer } from "@exosphere/core/sphere"; 3 - import { feedsModule } from "@exosphere/feeds"; 3 + // import { feedsModule } from "@exosphere/feeds"; 4 4 import { featureRequestsModule } from "@exosphere/feature-requests"; 5 5 6 6 export const modules: ExosphereModule[] = [featureRequestsModule];