This repository has no description
0

Configure Feed

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

chore: remove migrations

-164
-18
migrations/0000_fearless_bloodscream.sql
··· 1 - CREATE TABLE `takes` ( 2 - `id` text PRIMARY KEY NOT NULL, 3 - `user_id` text NOT NULL, 4 - `channel_id` text NOT NULL, 5 - `status` text DEFAULT 'active' NOT NULL, 6 - `started_at` integer NOT NULL, 7 - `paused_at` integer, 8 - `completed_at` integer, 9 - `duration_minutes` integer DEFAULT 5 NOT NULL, 10 - `paused_time_ms` integer DEFAULT 0 NOT NULL, 11 - `notes` text 12 - ); 13 - --> statement-breakpoint 14 - CREATE TABLE `users` ( 15 - `id` text PRIMARY KEY NOT NULL, 16 - `name` text NOT NULL, 17 - `is_active` integer DEFAULT true NOT NULL 18 - );
-133
migrations/meta/0000_snapshot.json
··· 1 - { 2 - "version": "6", 3 - "dialect": "sqlite", 4 - "id": "a57561dd-0c99-4274-9ec1-8a2660da81da", 5 - "prevId": "00000000-0000-0000-0000-000000000000", 6 - "tables": { 7 - "takes": { 8 - "name": "takes", 9 - "columns": { 10 - "id": { 11 - "name": "id", 12 - "type": "text", 13 - "primaryKey": true, 14 - "notNull": true, 15 - "autoincrement": false 16 - }, 17 - "user_id": { 18 - "name": "user_id", 19 - "type": "text", 20 - "primaryKey": false, 21 - "notNull": true, 22 - "autoincrement": false 23 - }, 24 - "channel_id": { 25 - "name": "channel_id", 26 - "type": "text", 27 - "primaryKey": false, 28 - "notNull": true, 29 - "autoincrement": false 30 - }, 31 - "status": { 32 - "name": "status", 33 - "type": "text", 34 - "primaryKey": false, 35 - "notNull": true, 36 - "autoincrement": false, 37 - "default": "'active'" 38 - }, 39 - "started_at": { 40 - "name": "started_at", 41 - "type": "integer", 42 - "primaryKey": false, 43 - "notNull": true, 44 - "autoincrement": false 45 - }, 46 - "paused_at": { 47 - "name": "paused_at", 48 - "type": "integer", 49 - "primaryKey": false, 50 - "notNull": false, 51 - "autoincrement": false 52 - }, 53 - "completed_at": { 54 - "name": "completed_at", 55 - "type": "integer", 56 - "primaryKey": false, 57 - "notNull": false, 58 - "autoincrement": false 59 - }, 60 - "duration_minutes": { 61 - "name": "duration_minutes", 62 - "type": "integer", 63 - "primaryKey": false, 64 - "notNull": true, 65 - "autoincrement": false, 66 - "default": 5 67 - }, 68 - "paused_time_ms": { 69 - "name": "paused_time_ms", 70 - "type": "integer", 71 - "primaryKey": false, 72 - "notNull": true, 73 - "autoincrement": false, 74 - "default": 0 75 - }, 76 - "notes": { 77 - "name": "notes", 78 - "type": "text", 79 - "primaryKey": false, 80 - "notNull": false, 81 - "autoincrement": false 82 - } 83 - }, 84 - "indexes": {}, 85 - "foreignKeys": {}, 86 - "compositePrimaryKeys": {}, 87 - "uniqueConstraints": {}, 88 - "checkConstraints": {} 89 - }, 90 - "users": { 91 - "name": "users", 92 - "columns": { 93 - "id": { 94 - "name": "id", 95 - "type": "text", 96 - "primaryKey": true, 97 - "notNull": true, 98 - "autoincrement": false 99 - }, 100 - "name": { 101 - "name": "name", 102 - "type": "text", 103 - "primaryKey": false, 104 - "notNull": true, 105 - "autoincrement": false 106 - }, 107 - "is_active": { 108 - "name": "is_active", 109 - "type": "integer", 110 - "primaryKey": false, 111 - "notNull": true, 112 - "autoincrement": false, 113 - "default": true 114 - } 115 - }, 116 - "indexes": {}, 117 - "foreignKeys": {}, 118 - "compositePrimaryKeys": {}, 119 - "uniqueConstraints": {}, 120 - "checkConstraints": {} 121 - } 122 - }, 123 - "views": {}, 124 - "enums": {}, 125 - "_meta": { 126 - "schemas": {}, 127 - "tables": {}, 128 - "columns": {} 129 - }, 130 - "internal": { 131 - "indexes": {} 132 - } 133 - }
-13
migrations/meta/_journal.json
··· 1 - { 2 - "version": "7", 3 - "dialect": "sqlite", 4 - "entries": [ 5 - { 6 - "idx": 0, 7 - "version": "6", 8 - "when": 1743563155870, 9 - "tag": "0000_fearless_bloodscream", 10 - "breakpoints": true 11 - } 12 - ] 13 - }