In PostgreSQL you can declare a column as an array
hashtags text[]
Is where a way to declare an array of ids to some table(foreign keys)?
In PostgreSQL you can declare a column as an array
hashtags text[]
Is where a way to declare an array of ids to some table(foreign keys)?
If with "to some table" you mean foreign keys, then no: arrays don't support foreign keys.
Neither "outgoing" (ids referencing other tables) foreign keys nor "incoming" (ids being referenced from other tables) foreign keys.