This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/db/migrate/20140617183711_create_info.rb
2016-02-07 14:27:57 +01:00

9 lines
148 B
Ruby

class CreateInfo < ActiveRecord::Migration
def change
create_table :info do |t|
t.string :title
t.text :content
end
end
end