Skip to content

Commit

Permalink
Rename database migrations (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
little9 authored and bess committed Jul 30, 2019
1 parent 286183e commit 4ffc122
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true
class CreateCsvImports < ActiveRecord::Migration[5.1]
class CreateZiziaCsvImports < ActiveRecord::Migration[5.1]
def change
create_table :zizia_csv_imports do |t|
t.references :user, foreign_key: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true
class AddManifestToCsvImports < ActiveRecord::Migration[5.1]
class AddManifestToZiziaCsvImports < ActiveRecord::Migration[5.1]
def change
add_column :zizia_csv_imports, :manifest, :string
end
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddFedoraCollectionIdToZiziaCsvImports < ActiveRecord::Migration[5.1]
def change
add_column :zizia_csv_imports, :fedora_collection_id, :string
end
end

This file was deleted.

0 comments on commit 4ffc122

Please sign in to comment.