Sha256: dc77832245fbee928d3c5a855e8de7295f02309e734d982d32e66a99c1347733

Contents?: true

Size: 315 Bytes

Versions: 5

Compression:

Stored size: 315 Bytes

Contents

Sequel.migration do
  up do
    create_table :comments do
      primary_key :id
      String :author
      String :body, :text => true
      Integer :post_id
      Integer :in_moderation
      Integer :created_at
      Integer :updated_at, :default => 0
    end
  end
  
  down do
    drop_table :comments
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
blogaze-0.2.0 lib/blogaze/db/migration/004_comments.rb
blogaze-0.1.0 lib/blogaze/db/migration/004_comments.rb
blogaze-0.0.3 lib/blogaze/db/migration/004_comments.rb
blogaze-0.0.2 lib/blogaze/db/migration/004_comments.rb
blogaze-0.0.1 lib/blogaze/db/migration/004_comments.rb