summaryrefslogtreecommitdiff
path: root/projects/3/example/db
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-01-13 22:47:09 -0700
committermo khan <mo@mokhan.ca>2025-01-13 22:47:09 -0700
commit3b7cc65e3fe5e66dcf77bee4045d9f5c7ce0f846 (patch)
tree6f34bf45733c4536509689e8ed663b2c83a3087b /projects/3/example/db
parente4cb765cd6a9b5932122a72ca4b142649858c37e (diff)
Split sql files
Diffstat (limited to 'projects/3/example/db')
-rw-r--r--projects/3/example/db/seeds.rb9
-rw-r--r--projects/3/example/db/structure.sql4
2 files changed, 0 insertions, 13 deletions
diff --git a/projects/3/example/db/seeds.rb b/projects/3/example/db/seeds.rb
deleted file mode 100644
index 4fbd6ed..0000000
--- a/projects/3/example/db/seeds.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-# This file should ensure the existence of records required to run the application in every environment (production,
-# development, test). The code here should be idempotent so that it can be executed at any point in every environment.
-# The data can then be loaded with the bin/rails db:seed command (or created alongside the database with db:setup).
-#
-# Example:
-#
-# ["Action", "Comedy", "Drama", "Horror"].each do |genre_name|
-# MovieGenre.find_or_create_by!(name: genre_name)
-# end
diff --git a/projects/3/example/db/structure.sql b/projects/3/example/db/structure.sql
deleted file mode 100644
index 7d96d16..0000000
--- a/projects/3/example/db/structure.sql
+++ /dev/null
@@ -1,4 +0,0 @@
-CREATE TABLE IF NOT EXISTS "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY);
-CREATE TABLE IF NOT EXISTS "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL);
-
-