aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/db_definitions/firebird.sql
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/fixtures/db_definitions/firebird.sql')
-rw-r--r--activerecord/test/fixtures/db_definitions/firebird.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/activerecord/test/fixtures/db_definitions/firebird.sql b/activerecord/test/fixtures/db_definitions/firebird.sql
index 28e4c71b71..87eb00c53f 100644
--- a/activerecord/test/fixtures/db_definitions/firebird.sql
+++ b/activerecord/test/fixtures/db_definitions/firebird.sql
@@ -161,6 +161,15 @@ CREATE TABLE people (
CREATE GENERATOR people_seq;
SET GENERATOR people_seq TO 10000;
+CREATE TABLE readers (
+ id BIGINT NOT NULL,
+ post_id BIGINT NOT NULL,
+ person_id BIGINT NOT NULL,
+ PRIMARY KEY (id)
+);
+CREATE GENERATOR readers_seq;
+SET GENERATOR readers_seq TO 10000;
+
CREATE TABLE binaries (
id BIGINT NOT NULL,
data BLOB,