Class: CortexReaver::PhotographSchema

Inherits:
Sequel::Migration
  • Object
show all
Defined in:
lib/cortex_reaver/migrations/004_photographs.rb

Instance Method Summary collapse

Instance Method Details

#downObject



3
4
5
# File 'lib/cortex_reaver/migrations/004_photographs.rb', line 3

def down
  drop_table :photographs if table_exists? :photographs
end

#upObject



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/cortex_reaver/migrations/004_photographs.rb', line 7

def up
  unless table_exists? :photographs
    create_table :photographs do
      primary_key :id

      foreign_key :user_id, :table => :users
      index :user_id

      varchar :name, :null => false, :unique => true, :index => true
      text :title, :null => false
      integer :comment_count, :null => false, :default => 0
      datetime :created_on, :null => false
      datetime :updated_on, :null => false
    end
  end
end