-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Project
components
table audit (#418)
closes #415 As per issue #415, but also: - Uses db:prepare which will run only run db:seed if the database doesn't exist. - Makes the classroom_management seeds idempotent, by not proceeding if a school exists. --------- Co-authored-by: create-issue-branch[bot] <53036503+create-issue-branch[bot]@users.noreply.github.com> Co-authored-by: Dan Halson <[email protected]>
- Loading branch information
1 parent
c0fd6b3
commit a93037a
Showing
16 changed files
with
170 additions
and
10 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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
rails db:setup --trace | ||
#!/bin/bash | ||
|
||
rails db:prepare | ||
rdbg -n -o -c -- bin/rails s -p 3009 -b '0.0.0.0' |
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
rails db:setup --trace | ||
#!/bin/bash | ||
|
||
rails db:prepare | ||
rails server --port 3009 --binding 0.0.0.0 |
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,39 @@ | ||
# This migration creates the `versions` table, the only schema PT requires. | ||
# All other migrations PT provides are optional. | ||
class CreateVersions < ActiveRecord::Migration[7.1] | ||
|
||
# The largest text column available in all supported RDBMS is | ||
# 1024^3 - 1 bytes, roughly one gibibyte. We specify a size | ||
# so that MySQL will use `longtext` instead of `text`. Otherwise, | ||
# when serializing very large objects, `text` might not be big enough. | ||
TEXT_BYTES = 1_073_741_823 | ||
|
||
def change | ||
create_table :versions, id: :uuid do |t| | ||
t.string :item_type, null: false | ||
t.string :item_id, null: false | ||
t.string :event, null: false | ||
t.string :whodunnit | ||
# We're not using versioning, so exclude the original state by not having an options field (see docs) | ||
# t.json :object | ||
|
||
# Known issue in MySQL: fractional second precision | ||
# ------------------------------------------------- | ||
# | ||
# MySQL timestamp columns do not support fractional seconds unless | ||
# defined with "fractional seconds precision". MySQL users should manually | ||
# add fractional seconds precision to this migration, specifically, to | ||
# the `created_at` column. | ||
# (https://dev.mysql.com/doc/refman/5.6/en/fractional-seconds.html) | ||
# | ||
# MySQL users should also upgrade to at least rails 4.2, which is the first | ||
# version of ActiveRecord with support for fractional seconds in MySQL. | ||
# (https://github.com/rails/rails/pull/14359) | ||
# | ||
# MySQL users should use the following line for `created_at` | ||
# t.datetime :created_at, limit: 6 | ||
t.datetime :created_at | ||
end | ||
add_index :versions, %i[item_type item_id] | ||
end | ||
end |
12 changes: 12 additions & 0 deletions
12
db/migrate/20240828112434_add_object_changes_to_versions.rb
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,12 @@ | ||
# This migration adds the optional `object_changes` column, in which PaperTrail | ||
# will store the `changes` diff for each update event. See the readme for | ||
# details. | ||
class AddObjectChangesToVersions < ActiveRecord::Migration[7.1] | ||
# The largest text column available in all supported RDBMS. | ||
# See `create_versions.rb` for details. | ||
TEXT_BYTES = 1_073_741_823 | ||
|
||
def change | ||
add_column :versions, :object_changes, :json | ||
end | ||
end |
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 @@ | ||
# This migration adds the optional `object_changes` column, in which PaperTrail | ||
# will store the `changes` diff for each update event. See the readme for | ||
# details. | ||
class AddMetaColumnsToVersions < ActiveRecord::Migration[7.1] | ||
def change | ||
add_column :versions, :meta_project_id, :uuid | ||
add_column :versions, :meta_school_id, :uuid | ||
add_column :versions, :meta_remixed_from_id, :uuid | ||
end | ||
end |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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