scinote-web/db/migrate/20191003091614_create_repository_status_items.rb

27 lines
790 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require File.expand_path('app/helpers/database_helper')
class CreateRepositoryStatusItems < ActiveRecord::Migration[6.0]
include DatabaseHelper
def up
create_table :repository_status_items do |t|
t.string :status, null: false
t.string :icon, null: false
t.references :repository, null: false, foreign_key: true
t.references :repository_column, null: false, foreign_key: true
t.references :created_by, index: true, foreign_key: { to_table: :users }, null: true
t.references :last_modified_by, index: true, foreign_key: { to_table: :users }, null: true
t.timestamps
end
2020-01-16 23:05:49 +08:00
add_gin_index_without_tags :repository_status_items, :status
end
def down
drop_table :repository_status_items
end
end