Class: CreateInfos

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/immutable-attribute-plugin/test/rails_root/db/migrate/002_create_infos.rb

Class Method Summary collapse

Class Method Details

.downObject



9
10
11
# File 'lib/immutable-attribute-plugin/test/rails_root/db/migrate/002_create_infos.rb', line 9

def self.down
  drop_table :accounts
end

.upObject



2
3
4
5
6
7
# File 'lib/immutable-attribute-plugin/test/rails_root/db/migrate/002_create_infos.rb', line 2

def self.up
  create_table :infos do |t|
    t.column :account_id, :integer
    t.column :text, :text
  end
end