░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/gems/canvas_partman/spec/fixtures
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: animal.rb
# frozen_string_literal: true # # Copyright (C) 2014 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. class CanvasPartmanTest::Animal < ActiveRecord::Base include CanvasPartman::Concerns::Partitioned self.table_name = "partman_animals" belongs_to :zoo, class_name: "CanvasPartmanTest::Zoo" def self.create_schema drop_schema CanvasPartmanTest::SchemaHelper.create_table :partman_animals do |t| t.string :race t.datetime :created_at t.references :zoo t.foreign_key :partman_zoos, column: :zoo_id end end def self.drop_schema CanvasPartmanTest::SchemaHelper.drop_table :partman_animals, cascade: true end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📁 db/
DIR
—
2023-09-24 03:36
📄 animal.rb
RB
1.2 KB
2023-09-24 03:36
EDIT
📄 trail.rb
RB
1.3 KB
2023-09-24 03:36
EDIT
📄 week_event.rb
RB
1.2 KB
2023-09-24 03:36
EDIT
📄 zoo.rb
RB
1.2 KB
2023-09-24 03:36
EDIT