A website template with lots of features, built with ruby on rails.

20150105022653_create_subscriptions.rb 217B

123456789101112
  1. class CreateSubscriptions < ActiveRecord::Migration
  2. def change
  3. create_table :subscriptions do |t|
  4. t.string :first_name
  5. t.string :last_name
  6. t.string :email
  7. t.timestamps
  8. end
  9. end
  10. end