Fix sqlite3 regression
[ecs.git] / db / migrate / 20140525164346_create_subparticipants.rb
blob2b678e87d1eef01bd12d16bd87087e7f73bfa90e
1 # Copyright (C) 2014 Heiko Bernloehr (FreeIT.de).
3 # This file is part of ECS.
5 # ECS is free software: you can redistribute it and/or modify it
6 # under the terms of the GNU Affero General Public License as
7 # published by the Free Software Foundation, either version 3 of
8 # the License, or (at your option) any later version.
10 # ECS is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # Affero General Public License for more details.
15 # You should have received a copy of the GNU Affero General Public
16 # License along with ECS. If not, see <http://www.gnu.org/licenses/>.
18 class CreateSubparticipants < ActiveRecord::Migration[4.2]
19   def self.up
20     create_table :subparticipants do |t|
21       t.integer :participant_id
22       t.integer :parent_id
23       t.string :realm
25       t.timestamps
26     end
27   end
29   def self.down
30     drop_table :subparticipants
31   end
32 end