Class: BigbluebuttonRailsTo140

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/bigbluebutton_rails/templates/migration_1_4_0.rb

Class Method Summary collapse

Class Method Details

.downObject



31
32
33
34
35
36
# File 'lib/generators/bigbluebutton_rails/templates/migration_1_4_0.rb', line 31

def self.down
  drop_table :bigbluebutton_meetings
  drop_table :bigbluebutton_room_options
  remove_column :bigbluebutton_recordings, :meeting_id
  remove_column :bigbluebutton_recordings, :description
end

.upObject



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/generators/bigbluebutton_rails/templates/migration_1_4_0.rb', line 2

def self.up
  add_column :bigbluebutton_recordings, :description, :string
  add_column :bigbluebutton_recordings, :meeting_id, :integer

  create_table :bigbluebutton_meetings do |t|
    t.integer :server_id
    t.integer :room_id
    t.string :meetingid
    t.string :name
    t.datetime :start_time
    t.boolean :running, :default => false
    t.boolean :record, :default => false
    t.integer :creator_id
    t.string :creator_name
    t.timestamps
  end
  add_index :bigbluebutton_meetings, [:meetingid, :start_time], :unique => true

  create_table :bigbluebutton_room_options do |t|
    t.integer :room_id
    t.string :default_layout
    t.boolean :presenter_share_only
    t.boolean :auto_start_video
    t.boolean :auto_start_audio
    t.timestamps
  end
  add_index :bigbluebutton_room_options, :room_id
end