Hello tinyforms

This commit is contained in:
2020-04-05 23:29:32 +02:00
commit 917051c7ea
101 changed files with 9649 additions and 0 deletions

BIN
db/development.sqlite3.bak Normal file

Binary file not shown.

View File

@@ -0,0 +1,12 @@
class CreateAuthentications < ActiveRecord::Migration[6.0]
def change
create_table :authentications do |t|
t.integer :user_id
t.string :access_token
t.string :refresh_token
t.datetime :expires_at
t.timestamps
end
end
end

View File

@@ -0,0 +1,11 @@
class CreateUsers < ActiveRecord::Migration[6.0]
def change
create_table :users do |t|
t.string :email
t.string :name
t.string :google_id
t.timestamps
end
end
end

View File

@@ -0,0 +1,14 @@
class CreateForms < ActiveRecord::Migration[6.0]
def change
create_table :forms do |t|
t.integer :user_id
t.string :google_spreadsheet_id
t.string :title
t.string :token
t.string :thank_you_url
t.timestamps
end
end
end

View File

@@ -0,0 +1,11 @@
class CreateSubmissions < ActiveRecord::Migration[6.0]
def change
create_table :submissions do |t|
t.integer :form_id
t.json :data, default: {}
t.datetime :appended_at
t.timestamps
end
end
end

53
db/schema.rb Normal file
View File

@@ -0,0 +1,53 @@
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# This file is the source Rails uses to define your schema when running `rails
# db:schema:load`. When creating a new database, `rails db:schema:load` tends to
# be faster and is potentially less error prone than running all of your
# migrations from scratch. Old migrations may fail to apply correctly if those
# migrations use external dependencies or application code.
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 2020_04_05_161905) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
create_table "authentications", force: :cascade do |t|
t.integer "user_id"
t.string "access_token"
t.string "refresh_token"
t.datetime "expires_at"
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
end
create_table "forms", force: :cascade do |t|
t.integer "user_id"
t.string "google_spreadsheet_id"
t.string "title"
t.string "token"
t.string "thank_you_url"
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
end
create_table "submissions", force: :cascade do |t|
t.integer "form_id"
t.json "data", default: {}
t.datetime "appended_at"
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
end
create_table "users", force: :cascade do |t|
t.string "email"
t.string "name"
t.string "google_id"
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
end
end

7
db/seeds.rb Normal file
View File

@@ -0,0 +1,7 @@
# This file should contain all the record creation needed to seed the database with its default values.
# The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup).
#
# Examples:
#
# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
# Character.create(name: 'Luke', movie: movies.first)