blob: ed62e4c314476344cbec23835adb98c70a847979 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class CreateChanges < ActiveRecord::Migration[4.2]
def self.up
create_table :changes do |t|
t.column :changeset_id, :integer, :null => false
t.column :action, :string, :limit => 1, :default => "", :null => false
t.column :path, :string, :default => "", :null => false
t.column :from_path, :string
t.column :from_revision, :integer
end
add_index :changes, [:changeset_id], :name => :changesets_changeset_id
end
def self.down
drop_table :changes
end
end
|