forked from photogabble/blacknova
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Postgresql in create universe, db, and schema.
Add table, sequence, and alter-sequence definitions for all tables.
- Loading branch information
The Kabal
committed
Sep 21, 2014
1 parent
6f69dec
commit 393edf9
Showing
73 changed files
with
393 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_adodb_logsql ( | ||
created timestamp without time zone NOT NULL, | ||
sql0 character varying(250) NOT NULL, | ||
sql1 text, | ||
params text, | ||
tracer text, | ||
timer numeric(16,0) NOT NULL | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER SEQUENCE bnt_bans_ban_id_seq OWNED BY bnt_bans.ban_id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE SEQUENCE bnt_bans_ban_id_seq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_bans ( | ||
ban_id integer NOT NULL DEFAULT nextval('bnt_bans_ban_id_seq'), | ||
ban_type integer NOT NULL DEFAULT '0', | ||
ban_mask character varying(16) DEFAULT NULL, | ||
ban_ship integer DEFAULT NULL, | ||
ban_date timestamp without time zone DEFAULT NULL, | ||
public_info text, | ||
admin_info text, | ||
PRIMARY KEY (ban_id) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER SEQUENCE bnt_bounty_bounty_id_seq OWNED BY bnt_bounty.bounty_id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE SEQUENCE bnt_bounty_bounty_id_seq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_bounty ( | ||
bounty_id integer NOT NULL DEFAULT nextval('bnt_bounty_bounty_id_seq'), | ||
amount integer NOT NULL DEFAULT '0', | ||
bounty_on integer NOT NULL DEFAULT '0', | ||
placed_by integer NOT NULL DEFAULT '0', | ||
PRIMARY KEY (bounty_id) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER SEQUENCE bnt_characters_character_id_seq OWNED BY bnt_characters.character_id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE SEQUENCE bnt_characters_character_id_seq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_characters ( | ||
character_id integer NOT NULL DEFAULT nextval('bnt_characters_character_id_seq'), | ||
character_name character varying(20) NOT NULL, | ||
credits integer NOT NULL DEFAULT '0', | ||
turns integer NOT NULL DEFAULT '0', | ||
turns_used integer NOT NULL DEFAULT '0', | ||
rating integer NOT NULL DEFAULT '0', | ||
score integer NOT NULL DEFAULT '0', | ||
PRIMARY KEY (character_id) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER SEQUENCE bnt_gameconfig_config_id_seq OWNED BY bnt_gameconfig.config_id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE SEQUENCE bnt_gameconfig_config_id_seq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_gameconfig ( | ||
config_id integer NOT NULL DEFAULT nextval('bnt_gameconfig_config_id_seq'), | ||
section character varying(30) NOT NULL DEFAULT 'game', | ||
"name" character varying(75) NOT NULL, | ||
category character varying(30) NOT NULL, | ||
type character varying(8) NOT NULL, | ||
"value" character varying(128) NOT NULL, | ||
PRIMARY KEY (config_id) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_ibank_accounts ( | ||
ship_id integer NOT NULL DEFAULT '0', | ||
balance integer DEFAULT '0', | ||
loan integer DEFAULT '0', | ||
loantime timestamp without time zone DEFAULT NULL, | ||
PRIMARY KEY (ship_id) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER SEQUENCE bnt_ibank_transfers_transfer_id_seq OWNED BY bnt_ibank_transfers.transfer_id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE SEQUENCE bnt_ibank_transfers_transfer_id_seq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_ibank_transfers ( | ||
transfer_id integer NOT NULL DEFAULT nextval('bnt_ibank_transfers_transfer_id_seq'), | ||
source_id integer NOT NULL DEFAULT '0', | ||
dest_id integer NOT NULL DEFAULT '0', | ||
"time" timestamp without time zone DEFAULT NULL, | ||
amount integer NOT NULL DEFAULT '0', | ||
PRIMARY KEY (transfer_id) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER SEQUENCE bnt_ip_bans_ban_id_seq OWNED BY bnt_ip_bans.ban_id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE SEQUENCE bnt_ip_bans_ban_id_seq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_ip_bans ( | ||
ban_id integer NOT NULL DEFAULT nextval('bnt_ip_bans_ban_id_seq'), | ||
ban_mask character varying(16) NOT NULL, | ||
PRIMARY KEY (ban_id) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER SEQUENCE bnt_languages_lang_id_seq OWNED BY bnt_languages.lang_id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE SEQUENCE bnt_languages_lang_id_seq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_languages ( | ||
lang_id integer NOT NULL DEFAULT nextval('bnt_languages_lang_id_seq'), | ||
section character varying(30) NOT NULL DEFAULT 'english', | ||
"name" character varying(75) NOT NULL, | ||
category character varying(30) NOT NULL, | ||
type character varying(8) NOT NULL, | ||
"value" character varying(2000) NOT NULL, | ||
PRIMARY KEY (lang_id) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER SEQUENCE bnt_links_link_id_seq OWNED BY bnt_links.link_id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE SEQUENCE bnt_links_link_id_seq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_links ( | ||
link_id integer NOT NULL DEFAULT nextval('bnt_links_link_id_seq'), | ||
link_start integer NOT NULL DEFAULT '0', | ||
link_dest integer NOT NULL DEFAULT '0', | ||
PRIMARY KEY (link_id) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER SEQUENCE bnt_logs_log_id_seq OWNED BY bnt_logs.log_id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE SEQUENCE bnt_logs_log_id_seq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_logs ( | ||
log_id integer NOT NULL DEFAULT nextval('bnt_logs_log_id_seq'), | ||
ship_id integer NOT NULL DEFAULT '0', | ||
"type" integer NOT NULL DEFAULT '0', | ||
"time" timestamp without time zone DEFAULT NULL, | ||
"data" text, | ||
PRIMARY KEY (log_id) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER SEQUENCE bnt_messages_id_seq OWNED BY bnt_messages.id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE SEQUENCE bnt_messages_id_seq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_messages ( | ||
id integer NOT NULL DEFAULT nextval('bnt_messages_id_seq'), | ||
sender_id integer NOT NULL DEFAULT '0', | ||
recp_id integer NOT NULL DEFAULT '0', | ||
"subject" character varying(250) DEFAULT NULL, | ||
sent character varying(19) DEFAULT NULL, | ||
message text, | ||
notified character varying(1) NOT NULL DEFAULT 'N', | ||
PRIMARY KEY (id) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER SEQUENCE bnt_movement_log_event_id_seq OWNED BY bnt_movement_log.event_id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE SEQUENCE bnt_movement_log_event_id_seq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_movement_log ( | ||
event_id integer NOT NULL DEFAULT nextval('bnt_movement_log_event_id_seq'), | ||
ship_id integer NOT NULL DEFAULT '0', | ||
sector_id integer DEFAULT '0', | ||
"time" timestamp without time zone DEFAULT NULL, | ||
PRIMARY KEY (event_id) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER SEQUENCE bnt_news_news_id_seq OWNED BY bnt_news.news_id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE SEQUENCE bnt_news_news_id_seq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_news ( | ||
news_id integer NOT NULL DEFAULT nextval('bnt_news_news_id_seq'), | ||
headline character varying(100) NOT NULL, | ||
newstext text, | ||
user_id integer DEFAULT NULL, | ||
"date" timestamp without time zone DEFAULT NULL, | ||
news_type character varying(10) DEFAULT NULL, | ||
PRIMARY KEY (news_id) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER SEQUENCE bnt_planets_planet_id_seq OWNED BY bnt_planets.planet_id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE SEQUENCE bnt_planets_planet_id_seq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_planets ( | ||
planet_id integer NOT NULL DEFAULT nextval('bnt_planets_planet_id_seq'), | ||
sector_id integer NOT NULL DEFAULT '0', | ||
"name" character varying(15) DEFAULT NULL, | ||
organics integer NOT NULL DEFAULT '0', | ||
ore integer NOT NULL DEFAULT '0', | ||
goods integer NOT NULL DEFAULT '0', | ||
energy integer NOT NULL DEFAULT '0', | ||
colonists integer NOT NULL DEFAULT '0', | ||
credits integer NOT NULL DEFAULT '0', | ||
fighters integer NOT NULL DEFAULT '0', | ||
torps integer NOT NULL DEFAULT '0', | ||
"owner" integer NOT NULL DEFAULT '0', | ||
corp integer NOT NULL DEFAULT '0', | ||
base character varying(1) NOT NULL DEFAULT 'N', | ||
sells character varying(1) NOT NULL DEFAULT 'N', | ||
prod_organics integer NOT NULL DEFAULT '20', | ||
prod_ore integer NOT NULL DEFAULT '0', | ||
prod_goods integer NOT NULL DEFAULT '0', | ||
prod_energy integer NOT NULL DEFAULT '0', | ||
prod_fighters integer NOT NULL DEFAULT '0', | ||
prod_torp integer NOT NULL DEFAULT '0', | ||
defeated character varying(1) NOT NULL DEFAULT 'N', | ||
PRIMARY KEY (planet_id) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER SEQUENCE bnt_players_player_id_seq OWNED BY bnt_players.player_id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE SEQUENCE bnt_players_player_id_seq; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
CREATE TABLE IF NOT EXISTS bnt_players ( | ||
player_id integer NOT NULL DEFAULT nextval('bnt_players_player_id_seq'), | ||
"password" character varying(255) NOT NULL, | ||
recovery_time integer DEFAULT NULL, | ||
email character varying(60) DEFAULT NULL, | ||
last_login timestamp without time zone DEFAULT NULL, | ||
ip_address character varying(16) NOT NULL, | ||
lang character varying(30) NOT NULL DEFAULT 'english.inc', | ||
PRIMARY KEY (player_id) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER SEQUENCE bnt_presets_preset_id OWNED BY bnt_presets.preset_id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE SEQUENCE bnt_presets_preset_id; |
Oops, something went wrong.