{
  "id": "a1443f6d-1320-43fa-828b-f68fc004b391",
  "prevId": "8ed5f286-a307-45d5-9d67-9717534b6ebc",
  "version": "7",
  "dialect": "postgresql",
  "tables": {
    "public.tweets": {
      "name": "tweets",
      "schema": "",
      "columns": {
        "id": {
          "name": "id",
          "type": "integer",
          "primaryKey": true,
          "notNull": true,
          "identity": {
            "type": "always",
            "name": "tweets_id_seq",
            "schema": "public",
            "increment": "1",
            "startWith": "1",
            "minValue": "1",
            "maxValue": "2147483647",
            "cache": "1",
            "cycle": false
          }
        },
        "tweet_id": {
          "name": "tweet_id",
          "type": "varchar(255)",
          "primaryKey": false,
          "notNull": true
        },
        "tweet_url": {
          "name": "tweet_url",
          "type": "text",
          "primaryKey": false,
          "notNull": true
        },
        "author_username": {
          "name": "author_username",
          "type": "varchar(255)",
          "primaryKey": false,
          "notNull": true
        },
        "author_name": {
          "name": "author_name",
          "type": "varchar(255)",
          "primaryKey": false,
          "notNull": true
        },
        "author_followers": {
          "name": "author_followers",
          "type": "integer",
          "primaryKey": false,
          "notNull": false,
          "default": 0
        },
        "text": {
          "name": "text",
          "type": "text",
          "primaryKey": false,
          "notNull": true
        },
        "language": {
          "name": "language",
          "type": "varchar(10)",
          "primaryKey": false,
          "notNull": false,
          "default": "'en'"
        },
        "created_at_utc": {
          "name": "created_at_utc",
          "type": "date",
          "primaryKey": false,
          "notNull": true
        },
        "captured_at_utc": {
          "name": "captured_at_utc",
          "type": "date",
          "primaryKey": false,
          "notNull": true,
          "default": "now()"
        },
        "status": {
          "name": "status",
          "type": "tweet_status",
          "typeSchema": "public",
          "primaryKey": false,
          "notNull": true,
          "default": "'pending'"
        },
        "errors": {
          "name": "errors",
          "type": "jsonb",
          "primaryKey": false,
          "notNull": false,
          "default": "'[]'::jsonb"
        },
        "updated_at": {
          "name": "updated_at",
          "type": "date",
          "primaryKey": false,
          "notNull": true,
          "default": "now()"
        }
      },
      "indexes": {},
      "foreignKeys": {},
      "compositePrimaryKeys": {},
      "uniqueConstraints": {
        "tweets_tweet_id_unique": {
          "name": "tweets_tweet_id_unique",
          "nullsNotDistinct": false,
          "columns": [
            "tweet_id"
          ]
        }
      },
      "policies": {},
      "checkConstraints": {},
      "isRLSEnabled": false
    }
  },
  "enums": {
    "public.tweet_status": {
      "name": "tweet_status",
      "schema": "public",
      "values": [
        "pending",
        "processed",
        "notified",
        "ready_to_respond",
        "responded",
        "ignored"
      ]
    }
  },
  "schemas": {},
  "sequences": {},
  "roles": {},
  "policies": {},
  "views": {},
  "_meta": {
    "columns": {},
    "schemas": {},
    "tables": {}
  }
}